home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / swagg_m.zip / MISC.SWG / 0120_String Function Returns.pas < prev    next >
Pascal/Delphi Source File  |  1995-03-03  |  329b  |  9 lines

  1. {
  2. > Does anyone know how TP returns a string from a function?  Does it
  3. > return a  pointer to the string in AX:DX?  I'm writing a data
  4.  
  5. BP (and probably TP) return a string at the memory location pointed
  6. to by @Result .  @Result is a pointer type, and it's location can
  7. be loaded into registers like    LES DI,@Result
  8. }
  9.